home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / NLoad / Makefile.server < prev    next >
Encoding:
Makefile  |  1991-01-19  |  545 b   |  23 lines

  1. # Makefile - Used to build the load server on an Encore Multimax (4.3 BSD).
  2.  
  3. # (Making this program on an Encore Multimax requires the gcc compiler.)
  4.  
  5. # Revision History:
  6. #   1. Original coding.  17 JAN 1991 (REX)
  7.  
  8. # Rex Pruess <rpruess@umaxc.weeg.uiowa.edu>
  9. # ----------------------------------------------------------------------------
  10.  
  11. OBJS= LoadServer.o
  12. CC = gcc
  13. CFLAGS= -O
  14. LIBS=
  15.  
  16. LoadServer: $(OBJS)
  17.     $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
  18.  
  19. install:
  20.     install -s -m 700 LoadServer /usr/adm/local/bin/LoadServer
  21. clean:    
  22.     -rm -f *.o LoadServer
  23.